home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / frame_545 / DoAction.as
Encoding:
Text File  |  2005-09-23  |  389 b   |  14 lines

  1. _root.score += _root.lives * 100;
  2. _root.healthbonus = (_root.health + _root.armor) * 3;
  3. _root.healthbonus = Math.round(_root.healthbonus);
  4. if(_root.tdeaths >= 1)
  5. {
  6.    _root.finalscore = (_root.score + _root.healthbonus + 10000) / _root.tdeaths;
  7. }
  8. else
  9. {
  10.    _root.finalscore = _root.score + _root.healthbonus + 10000;
  11. }
  12. _root.finalscore = Math.round(_root.finalscore);
  13. stop();
  14.